
/* Brown: #51423D */
/* Beige: #968170 */
/* Dark brown: #435045 */
/* Green: #383B28 */
/* Pink: #E808CA */
/*Yellow: #E9D899 */

:root {
  color-scheme: light;
}

/*Comic*/

.comic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 40px auto;
  width: 100%;
}

.comic img {
  width: 34%;
  height: auto;
  transition: width 0.3s ease-in-out;
  max-width: 100%;
}

/* Map default */
#map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 100%;
  padding: 60px 0px;
}

#map img {
  height: auto;
  transition: width 0.3s ease-in-out;
  max-width: 100%;
}

.bottom {
    padding-bottom: 20px;
}

/* Support section */

#support {
    font-family: cursive;
    color:antiquewhite;
}

#support:hover {
    color:#E9D899;
    cursor: pointer;
}

.foot-box {
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}



/* ----------------------------
   RESPONSIVE BREAKPOINTS
---------------------------- */

/* comic */
/* Large tablets / small desktops (≤1000px) */
@media screen and (max-width: 1000px) {
  .comic img {
      width: 70%;
  }
  #map img {
      width: 65%;
  }
}

/* Tablets (≤800px) — map hits edges here */
@media screen and (max-width: 800px) {
  .comic img {
      width: 90%;
  }
  #map img {
      width: calc(100% - 10px); /* nearly edge-to-edge */
  }
}

/* Mobile (≤480px) — comic nearly edge-to-edge */
@media screen and (max-width: 480px) {
  .comic {
      margin: 20px 0;
      padding: 0;
  }
  .comic img {
      width: calc(100% - 8px); /* about 4px margin each side */
  }
  #map img {
      width: calc(100% - 8px); /* keep matching edge look */
  }
}


/* other stuff */
/* Large tablets / small desktops (≤1000px) */
@media screen and (max-width: 1000px) {
  .chapter-box {
      padding: 5px 40px;
  }
}

/* Tablets (≤800px) */
@media screen and (max-width: 800px) {
  .top-bar {
      flex-direction: column;
      height: auto;
  }

  #Chapter {
   padding: 1px;
  }

  #Title {
    padding: 1px;
  }

  .chapter-box {
      padding: 5px 25px;
      font-size: 0.95em;
  }

  #Title h2 {
      font-size: 1.2em;
  }
}

/* Mobile (≤480px) */
@media screen and (max-width: 480px) {
  body {
      background-size: cover;
  }

  .top-bar {
      flex-direction: column;
      text-align: center;
      padding: 10px;
  }

  #Title h2 {
      font-size: 1.1em;
  }

  .head {
      font-size: 0.9em;
      margin: 10px 0;
  }

  .chapter-box {
      margin: 30px 10px;
      padding: 5px 15px;
      font-size: 0.9em;
  }

  .nav-btn span {
      font-size: 1.4em;
  }

  .support {
      width: 100%;
      font-size: 1em;
  }
}

.footer {
    padding: 20px 20px;
    margin: 0px;
    background-color: #968170;
}

#copyright {
  font-size: 0.7em;
  text-align: center;
}



#jumpTopBtn {
    position: relative;
    align-items: center;           /* vertikal zentrieren */
    gap: 6px;
    margin: 20px;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: cursive;
    font-size: 30px;
    font-weight: bold;             /* Text fett */
    color:#E808CA;                /* DEFAULT Farbe für Text + Pfeil */
    background: linear-gradient(to right, transparent, transparent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;         /* Unterstreichung entfernen */
}


#jumpTopBtn span {
    color: inherit;               
    font-weight: bold;        
    padding-bottom: 4px;    
}


/* Hover-Effekt für Text und Pfeil */
#jumpTopBtn:hover {
    color: #E9D899;                /* Hover-Farbe für Text + Pfeil */
    background: linear-gradient(90deg, rgba(233,216,153,0.2), rgba(232,8,202,0.2));
}

#jumpTopBtn .arrow {
    margin-bottom: -2px; /* kleiner Offset für perfekte optische Zentrierung */
}

#jumpTopBtn .arrow path {
    transition: fill 0.3s ease-in-out;
}

.top-jump-box {
display: flex;

}

#to-top {
  font-size: larger;
}

.pay-and-subscribe {
display: flex;
flex-direction: row;

margin-top: 30px;
}

.fancy-eliot {
    width: 140px;
    height: auto;
}

.dialouge-options {
    display: flex;
    padding-left: 10px;
    flex-direction: column;
    justify-content: center;
}

.dialouge-options a {
  color: white;
  font-size: 1.3em;
  background-color:#968170;
  padding: 6px;
  margin-left: 10px;
  border: 2px solid black;
  border-radius: 3px;
  font-weight: bold;
}

.dialouge-options p {
   color: #968170;
   padding-bottom: 2px;
}

.dialouge-options a:hover {
  color:white;
  cursor: pointer;
  border-color:rgb(240, 146, 216);
  transition: all 0.3s ease-in-out;
  text-shadow: 0 0 6px rgb(255, 255, 255);
  background-color:#E808CA;
  transform: scale(1.05); /* 👈 minimal größer */
 
}

.foot-box {
    padding: 40px 20px;
}

/* Desktop / größere Bildschirme */
@media (min-width: 768px) {
    .foot-box p#thank-you {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .pay-and-subscribe {
        flex-direction: row; /* Bild links, Links rechts */
        align-items: center;
        gap: 30px;
        padding-left: 10px;
    }

  .fancy-eliot {
    width: 240px;
    height: auto;
}

    .dialouge-options {
        gap: 15px;
        align-items: center;
    }

    .dialouge-options a {
        font-size: 2em;
        width: 250px;
        font-weight: bold;
    }

    .dialouge-options p {
        padding-bottom: 0;
        margin: 0 5px;
    }
}
